home *** CD-ROM | disk | FTP | other *** search
- //
- // Registration.h
- // GolfTracker
- //
- // Created by chris struhar on 12/29/04.
- // Copyright 2004 __MyCompanyName__. All rights reserved.
- //
-
- #import <Cocoa/Cocoa.h>
-
-
- @interface Registration : NSObject {
- IBOutlet id regCode;
- IBOutlet id regName;
- IBOutlet id regWindow;
- BOOL isReg;
-
- IBOutlet id donWindow;
- IBOutlet id donShowDialog;
- }
-
- - (BOOL)isRegistered;
- - (void)checkRegistered;
- - (BOOL)checkSN:(NSString *)forNumber andName:(NSString *)forName andTime:(BOOL)checkTime;
- - (IBAction)doRegister:(id)sender;
- - (IBAction)registerOK:(id)sender;
- - (IBAction)registerCancel:(id)sender;
- - (IBAction)goToDonate:(id)sender;
- - (void)showDonationBeg;
- - (IBAction)closeDonate:(id)sender;
-
- @end
-